VistaDB 6
VistaDB.Provider Namespace / VistaDBDataAdapter Class / Update Method / Update(DataRow[]) Method
An array of System.Data.DataRow objects used to update the data source.


In This Topic
    Update(DataRow[]) Method
    In This Topic
    Updates the values in the database by executing the respective INSERT, UPDATE, or DELETE statements for each inserted, updated, or deleted row in the specified array in the System.Data.DataSet.
    Syntax
    'Declaration
     
    
    Public Overloads Function Update( _
       ByVal dataRows() As System.Data.DataRow _
    ) As System.Integer
    'Usage
     
    
    Dim instance As VistaDBDataAdapter
    Dim dataRows() As System.Data.DataRow
    Dim value As System.Integer
     
    value = instance.Update(dataRows)
    public System.int Update( 
       System.Data.DataRow[] dataRows
    )

    Parameters

    dataRows
    An array of System.Data.DataRow objects used to update the data source.

    Return Value

    The number of rows successfully updated from the System.Data.DataSet.
    Exceptions
    ExceptionDescription
    The System.Data.DataSet is invalid.
    The source table is invalid.
    No System.Data.DataRow exists to update. -or- No System.Data.DataTable exists to update. -or- No System.Data.DataSet exists to use as a source.
    An attempt to execute an INSERT, UPDATE, or DELETE statement resulted in zero records affected.
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also